Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /** |
||
10 | this.$fields = $('.amarkal-settings-field'); |
||
11 | this.$input = $('#settings-search'); |
||
12 | this.$input.on('keyup',function(){_this.onKeyup();}); |
||
13 | }, |
||
14 | onKeyup: function(e) { |
||
15 | var query = this.$input.val().toLowerCase(), |
||
16 | $matches; |
||
17 | |||
18 | // The user's search query is longer than 1 character |
||
19 | if(query.length > 1) { |
||
53 | }; |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.